Current Location: Home> Function Categories> sinh

sinh

Hyperbolic sine
Name:sinh
Category:math
Programming Language:php
One-line Description:Hyperbolic sine.

Definition and usage

sinh() function returns a hyperbolic sine of a number.

Example

In this example, we will return a hyperbolic sine of different numbers:

 <?php
echo ( sinh ( 3 ) ) ;
echo ( sinh ( - 3 ) ) ;
echo ( sinh ( 0 ) ) ;
echo ( sinh ( M_PI ) ) ;
echo ( sinh ( M_PI_2 ) ) ;
?>

Try it yourself

grammar

 sinh ( x )
parameter describe
x Required. A number.

illustrate

Returns the hyperbolic sine value of x , defined as (exp(arg) - exp(-arg))/2.

Similar Functions
  • Find the minimum value min

    min

    Findtheminimumvalue
  • Arctangle of two parameters atan2

    atan2

    Arctangleoftwoparame
  • Reverse cosine acos

    acos

    Reversecosine
  • Calculate the index of e exp

    exp

    Calculatetheindexofe
  • Tilt tan

    tan

    Tilt
  • Find the maximum value max

    max

    Findthemaximumvalue
  • Calculate the oblique length of a straight triangle hypot

    hypot

    Calculatetheobliquel
  • Hyperbolic tangent tanh

    tanh

    Hyperbolictangent
Popular Articles